home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / database / bdem22.zip / BDEMO018.TXT < prev    next >
Text File  |  1994-10-27  |  2KB  |  42 lines

  1. BUILDER OTHER FUNCTIONS
  2.  
  3. The Builder Library 'Other' Functions Don't Really Fit Any Category, All
  4. Are Simple and Very Useful.
  5.  
  6. When You Start Programming Using the Builder Development System, It Is a
  7. Good Idea to Replace All Your INKEY(0) Function Calls With the Builder
  8. WaitKey().  The Reason For this Is that the WaitKey() Function Will React
  9. to any of Your Mouse Pads, and INKEY(0) Won't.  Another Advantage is
  10. WaitKey() Will React to SET KEY TO...!
  11.  
  12. There Are a Few Other "Other" Functions that Just Didn't Make It Into the
  13. Demo.  They ARE Useful, Just Not Very Often.  It's Good to Know They're
  14. There...
  15.  
  16. Var()         - This One is an Absolute MUST MEMORIZE Because It Gives
  17.                 You Access to the Builder Internal Control Variables.
  18.                 (Mostly These Are Colors) Definetely See the Documentation
  19.                 on this Function!
  20.  
  21. VarInit()     - Calls the Var() Function Repeatedly to Initialize the
  22.                 STATIC Array that Contains the Builder Internal Variables.
  23.                 This function executes automatically once per program
  24.                 execution.
  25.  
  26. CkPrtr()      - Check Printer, Tests the Printer to See if All is OK and
  27.                 Displays a MsgBox() if There is a Problem.  It Will Only
  28.                 Work With LPT1: Because it Calls ISPRINTER().
  29.  
  30. Etc()         - Use this in Long Loops Where the Each Iteration Takes
  31.                 the Same Amount of Time.  It Returns the Estimated Time
  32.                 to Completion.
  33.  
  34. GetJump()     - If a Series of GETs are Active, Pass a Number to This
  35.                 Function and JUMP to That GET, Relative to the Beginning.
  36.                 (i.e. GetJump(1) Will Go to The First GET)
  37.  
  38. Make_Empty()  - Will Return an Empty() Value for Whatever Data Type is
  39.                 Passed.
  40.  
  41. ** End of File
  42.